home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
blkspell
/
vb_examp.frm
< prev
next >
Wrap
Text File
|
1998-10-16
|
2KB
|
59 lines
VERSION 4.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3450
ClientLeft = 1470
ClientTop = 1515
ClientWidth = 2985
Height = 3855
Left = 1410
LinkTopic = "Form1"
ScaleHeight = 3450
ScaleWidth = 2985
Top = 1170
Width = 3105
Begin VB.CommandButton Command2
Caption = "Show License"
Height = 375
Left = 480
TabIndex = 2
Top = 2880
Width = 1935
End
Begin VB.CommandButton Command1
Caption = "SpellCheck"
Height = 375
Left = 480
TabIndex = 1
Top = 2400
Width = 1935
End
Begin VB.TextBox Text1
Height = 1935
Left = 240
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "VB_EXA~1.frx":0000
Top = 240
Width = 2535
End
End
Attribute VB_Name = "Form1"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Declare Sub SpellCheck Lib "..\release\btdict.dll" (ByVal hWnd As Long)
Private Declare Sub ShowLicense Lib "..\release\btdict.dll" ()
Private Sub Command1_Click()
SpellCheck (Text1.hWnd)
End Sub
Private Sub Command2_Click()
ShowLicense
End Sub